home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinME SBLive1024 BSOD 1.xpl < prev    next >
Text File  |  2001-04-13  |  2KB  |  52 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Sound Cards\Soundblaster Live 1024"
  5. "NAME"="Improve Windows Me Compatability"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Improve Windows Me Compatibility"
  8. "DESCRIPTION 1"="If you keep getting a BSOD (Blue Screen Of Death) in Windows Me which is caused by your SBLive 1024 sound card, then this tweak may help."
  9. "DESCRIPTION 2"="First, open the System applet in Control panel, then open Creative > Miscellaneous Settings and disable SB16 emulation. Then, put a tick in the box above."
  10. "DESCRIPTION 3"="If this causes even more problems, then you can clear the tick in the box to disable the extra compatibility."
  11. "COMMENT 1"="This tip was submitted to PC Format (http://www.pcformat.co.uk/) by P. Petrides [petrides@spidernet.net] for their March 2001 issue."
  12. "VERSION"="1.0"
  13. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "CONTACTURL"="http://www.neilrt.cwc.net/"
  16. "OSVERSION"="00001"
  17.  
  18. 'Declaration of some constants
  19. sP="HKLM\Software\Creative Tech"
  20. sQ="\DeviceInfo\PCI\VEN_1102&DEV_0002\mmx"
  21.  
  22. 'Called when the Plugin is started
  23. SUB Plugin_Initialize
  24.  s=RegPathExists(sP)
  25.  if s=false then
  26.   Call Disable()
  27.  else
  28.   t=RegReadValue(sP&sQ)
  29.   if t="1" then
  30.    Call SetUIElement(1,true)
  31.   end if
  32.  end if
  33. END SUB
  34.  
  35. 'Called when the Plugin should validate the Data the user has entered
  36. SUB Plugin_CheckData(ElementIndex)
  37. END SUB
  38.  
  39. 'Called when the Plugin should apply the changes
  40. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  s=GetUIElement(1)
  42.  if s=true then
  43.   Call RegWriteValue(Sp&sQ,"1",1)
  44.  else
  45.   Call RegDeleteValue(sP&sQ)
  46.  end if
  47. END SUB
  48.  
  49. 'Called when the Plugin is about to be removed from memory
  50. SUB Plugin_Terminate
  51. END SUB
  52.